| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670 |
- import React, { ReactNode, useEffect } from 'react';
- import EventEmitter from 'events';
- import { isIPageInfoForEntity } from '@growi/core';
- import type {
- IDataWithMeta, IPageInfoForEntity, IPagePopulatedToShowRevision, IUserHasId,
- } from '@growi/core';
- import {
- isClient, pagePathUtils, pathUtils,
- } from '@growi/core/dist/utils';
- import ExtensibleCustomError from 'extensible-custom-error';
- import type {
- GetServerSideProps, GetServerSidePropsContext,
- } from 'next';
- import { serverSideTranslations } from 'next-i18next/serverSideTranslations';
- import dynamic from 'next/dynamic';
- import Head from 'next/head';
- import { useRouter } from 'next/router';
- import superjson from 'superjson';
- import { useCurrentGrowiLayoutFluidClassName, useEditorModeClassName } from '~/client/services/layout';
- import { PageView } from '~/components/Page/PageView';
- import { DrawioViewerScript } from '~/components/Script/DrawioViewerScript'; import type { CrowiRequest } from '~/interfaces/crowi-request';
- import type { EditorConfig } from '~/interfaces/editor-settings';
- import type { IPageGrantData } from '~/interfaces/page';
- import type { RendererConfig } from '~/interfaces/services/renderer';
- import type { PageModel, PageDocument } from '~/server/models/page';
- import type { PageRedirectModel } from '~/server/models/page-redirect';
- import {
- useCurrentUser,
- useIsForbidden, useIsSharedUser,
- useIsEnabledStaleNotification, useIsIdenticalPath,
- useIsSearchServiceConfigured, useIsSearchServiceReachable, useDisableLinkSharing,
- useHackmdUri, useDefaultIndentSize, useIsIndentSizeForced,
- useIsAclEnabled, useIsSearchPage, useIsEnabledAttachTitleHeader,
- useCsrfToken, useIsSearchScopeChildrenAsDefault, useCurrentPathname,
- useIsSlackConfigured, useRendererConfig, useGrowiCloudUri,
- useEditorConfig, useIsAllReplyShown, useIsUploadableFile, useIsUploadableImage, useIsContainerFluid, useIsNotCreatable,
- } from '~/stores/context';
- import { useEditingMarkdown } from '~/stores/editor';
- import { useHasDraftOnHackmd, usePageIdOnHackmd, useRevisionIdHackmdSynced } from '~/stores/hackmd';
- import {
- useSWRxCurrentPage, useSWRMUTxCurrentPage, useSWRxIsGrantNormalized, useCurrentPageId,
- useIsNotFound, useIsLatestRevision, useTemplateTagData, useTemplateBodyData,
- } from '~/stores/page';
- import { useRedirectFrom } from '~/stores/page-redirect';
- import { useRemoteRevisionId } from '~/stores/remote-latest-page';
- import { useSelectedGrant } from '~/stores/ui';
- import { useSetupGlobalSocket, useSetupGlobalSocketForPage } from '~/stores/websocket';
- import loggerFactory from '~/utils/logger';
- import { BasicLayout } from '../components/Layout/BasicLayout';
- import GrowiContextualSubNavigationSubstance from '../components/Navbar/GrowiContextualSubNavigation';
- import type { GrowiSubNavigationSwitcherProps } from '../components/Navbar/GrowiSubNavigationSwitcher';
- import { DisplaySwitcher } from '../components/Page/DisplaySwitcher';
- import type { NextPageWithLayout } from './_app.page';
- import type { CommonProps } from './utils/commons';
- import {
- getNextI18NextConfig, getServerSideCommonProps, generateCustomTitleForPage, useInitSidebarConfig, skipSSR,
- } from './utils/commons';
- declare global {
- // eslint-disable-next-line vars-on-top, no-var
- var globalEmitter: EventEmitter;
- }
- const GrowiPluginsActivator = dynamic(() => import('~/features/growi-plugin/client/components').then(mod => mod.GrowiPluginsActivator), { ssr: false });
- const DescendantsPageListModal = dynamic(() => import('../components/DescendantsPageListModal').then(mod => mod.DescendantsPageListModal), { ssr: false });
- const UnsavedAlertDialog = dynamic(() => import('../components/UnsavedAlertDialog'), { ssr: false });
- const GrowiSubNavigationSwitcher = dynamic<GrowiSubNavigationSwitcherProps>(() => import('../components/Navbar/GrowiSubNavigationSwitcher')
- .then(mod => mod.GrowiSubNavigationSwitcher), { ssr: false });
- const DrawioModal = dynamic(() => import('../components/PageEditor/DrawioModal').then(mod => mod.DrawioModal), { ssr: false });
- const HandsontableModal = dynamic(() => import('../components/PageEditor/HandsontableModal').then(mod => mod.HandsontableModal), { ssr: false });
- const TemplateModal = dynamic(() => import('../components/TemplateModal').then(mod => mod.TemplateModal), { ssr: false });
- const LinkEditModal = dynamic(() => import('../components/PageEditor/LinkEditModal').then(mod => mod.LinkEditModal), { ssr: false });
- const PageStatusAlert = dynamic(() => import('../components/PageStatusAlert').then(mod => mod.PageStatusAlert), { ssr: false });
- const QuestionnaireModalManager = dynamic(() => import('~/features/questionnaire/client/components/QuestionnaireModalManager'), { ssr: false });
- const logger = loggerFactory('growi:pages:all');
- const {
- isPermalink: _isPermalink, isCreatablePage,
- } = pagePathUtils;
- const { removeHeadingSlash } = pathUtils;
- type IPageToShowRevisionWithMeta = IDataWithMeta<IPagePopulatedToShowRevision & PageDocument, IPageInfoForEntity>;
- type IPageToShowRevisionWithMetaSerialized = IDataWithMeta<string, string>;
- superjson.registerCustom<IPageToShowRevisionWithMeta, IPageToShowRevisionWithMetaSerialized>(
- {
- isApplicable: (v): v is IPageToShowRevisionWithMeta => {
- return v?.data != null
- && v?.data.toObject != null
- && v?.meta != null
- && isIPageInfoForEntity(v.meta);
- },
- serialize: (v) => {
- return {
- data: superjson.stringify(v.data.toObject()),
- meta: superjson.stringify(v.meta),
- };
- },
- deserialize: (v) => {
- return {
- data: superjson.parse(v.data),
- meta: v.meta != null ? superjson.parse(v.meta) : undefined,
- };
- },
- },
- 'IPageToShowRevisionWithMetaTransformer',
- );
- // GrowiContextualSubNavigation for NOT shared page
- type GrowiContextualSubNavigationProps = {
- isLinkSharingDisabled: boolean,
- }
- const GrowiContextualSubNavigation = (props: GrowiContextualSubNavigationProps): JSX.Element => {
- const { isLinkSharingDisabled } = props;
- const { data: currentPage } = useSWRxCurrentPage();
- return (
- <div data-testid="grw-contextual-sub-nav">
- <GrowiContextualSubNavigationSubstance currentPage={currentPage} isLinkSharingDisabled={isLinkSharingDisabled} />
- </div>
- );
- };
- type Props = CommonProps & {
- pageWithMeta: IPageToShowRevisionWithMeta | null,
- // pageUser?: any,
- redirectFrom?: string;
- // shareLinkId?: string;
- isLatestRevision?: boolean,
- isIdenticalPathPage?: boolean,
- isForbidden: boolean,
- isNotFound: boolean,
- isNotCreatable: boolean,
- // isAbleToDeleteCompletely: boolean,
- templateTagData?: string[],
- templateBodyData?: string,
- isSearchServiceConfigured: boolean,
- isSearchServiceReachable: boolean,
- isSearchScopeChildrenAsDefault: boolean,
- isSlackConfigured: boolean,
- // isMailerSetup: boolean,
- isAclEnabled: boolean,
- // hasSlackConfig: boolean,
- drawioUri: string | null,
- hackmdUri: string,
- noCdn: string,
- // highlightJsStyle: string,
- isAllReplyShown: boolean,
- isContainerFluid: boolean,
- editorConfig: EditorConfig,
- isEnabledStaleNotification: boolean,
- isEnabledAttachTitleHeader: boolean,
- // isEnabledLinebreaks: boolean,
- // isEnabledLinebreaksInComments: boolean,
- adminPreferredIndentSize: number,
- isIndentSizeForced: boolean,
- disableLinkSharing: boolean,
- skipSSR: boolean,
- ssrMaxRevisionBodyLength: number,
- grantData?: IPageGrantData,
- rendererConfig: RendererConfig,
- };
- const Page: NextPageWithLayout<Props> = (props: Props) => {
- // register global EventEmitter
- if (isClient() && window.globalEmitter == null) {
- window.globalEmitter = new EventEmitter();
- }
- const router = useRouter();
- useCurrentUser(props.currentUser ?? null);
- // commons
- useEditorConfig(props.editorConfig);
- useCsrfToken(props.csrfToken);
- useGrowiCloudUri(props.growiCloudUri);
- // page
- useIsContainerFluid(props.isContainerFluid);
- // useOwnerOfCurrentPage(props.pageUser != null ? JSON.parse(props.pageUser) : null);
- useIsForbidden(props.isForbidden);
- useIsNotCreatable(props.isNotCreatable);
- useRedirectFrom(props.redirectFrom ?? null);
- useIsSharedUser(false); // this page cann't be routed for '/share'
- useIsIdenticalPath(props.isIdenticalPathPage ?? false);
- useIsEnabledStaleNotification(props.isEnabledStaleNotification);
- useIsSearchPage(false);
- useIsEnabledAttachTitleHeader(props.isEnabledAttachTitleHeader);
- useIsSearchServiceConfigured(props.isSearchServiceConfigured);
- useIsSearchServiceReachable(props.isSearchServiceReachable);
- useIsSearchScopeChildrenAsDefault(props.isSearchScopeChildrenAsDefault);
- useIsSlackConfigured(props.isSlackConfigured);
- // useIsMailerSetup(props.isMailerSetup);
- useIsAclEnabled(props.isAclEnabled);
- // useHasSlackConfig(props.hasSlackConfig);
- useHackmdUri(props.hackmdUri);
- // useNoCdn(props.noCdn);
- useDefaultIndentSize(props.adminPreferredIndentSize);
- useIsIndentSizeForced(props.isIndentSizeForced);
- useDisableLinkSharing(props.disableLinkSharing);
- useRendererConfig(props.rendererConfig);
- // useRendererSettings(props.rendererSettingsStr != null ? JSON.parse(props.rendererSettingsStr) : undefined);
- // useGrowiRendererConfig(props.growiRendererConfigStr != null ? JSON.parse(props.growiRendererConfigStr) : undefined);
- useIsAllReplyShown(props.isAllReplyShown);
- useIsUploadableFile(props.editorConfig.upload.isUploadableFile);
- useIsUploadableImage(props.editorConfig.upload.isUploadableImage);
- const { pageWithMeta } = props;
- const pageId = pageWithMeta?.data._id;
- const pagePath = pageWithMeta?.data.path ?? props.currentPathname;
- const revisionBody = pageWithMeta?.data.revision?.body;
- usePageIdOnHackmd(pageWithMeta?.data.pageIdOnHackmd);
- useHasDraftOnHackmd(pageWithMeta?.data.hasDraftOnHackmd ?? false);
- useCurrentPathname(props.currentPathname);
- useSWRxCurrentPage(pageWithMeta?.data ?? null); // store initial data
- const { trigger: mutateCurrentPage } = useSWRMUTxCurrentPage();
- const { mutate: mutateEditingMarkdown } = useEditingMarkdown();
- const { data: currentPageId, mutate: mutateCurrentPageId } = useCurrentPageId();
- const { mutate: mutateIsNotFound } = useIsNotFound();
- const { mutate: mutateIsLatestRevision } = useIsLatestRevision();
- const { data: grantData } = useSWRxIsGrantNormalized(pageId);
- const { mutate: mutateSelectedGrant } = useSelectedGrant();
- const { mutate: mutateRemoteRevisionId } = useRemoteRevisionId();
- const { mutate: mutateRevisionIdHackmdSynced } = useRevisionIdHackmdSynced();
- const { mutate: mutateTemplateTagData } = useTemplateTagData();
- const { mutate: mutateTemplateBodyData } = useTemplateBodyData();
- useSetupGlobalSocket();
- useSetupGlobalSocketForPage(pageId);
- const growiLayoutFluidClass = useCurrentGrowiLayoutFluidClassName(pageWithMeta?.data);
- // Store initial data (When revisionBody is not SSR)
- useEffect(() => {
- if (!props.skipSSR) {
- return;
- }
- if (currentPageId != null && !props.isNotFound) {
- const mutatePageData = async() => {
- const pageData = await mutateCurrentPage();
- mutateEditingMarkdown(pageData?.revision.body);
- };
- // If skipSSR is true, use the API to retrieve page data.
- // Because pageWIthMeta does not contain revision.body
- mutatePageData();
- }
- }, [currentPageId, mutateCurrentPage, mutateEditingMarkdown, props.isNotFound, props.skipSSR]);
- // sync grant data
- useEffect(() => {
- const grantDataToApply = props.grantData ? props.grantData : grantData?.grantData.currentPageGrant;
- mutateSelectedGrant(grantDataToApply);
- }, [grantData?.grantData.currentPageGrant, mutateSelectedGrant, props.grantData]);
- // sync pathname by Shallow Routing https://nextjs.org/docs/routing/shallow-routing
- useEffect(() => {
- const decodedURI = decodeURI(window.location.pathname);
- if (isClient() && decodedURI !== props.currentPathname) {
- const { search, hash } = window.location;
- router.replace(`${props.currentPathname}${search}${hash}`, undefined, { shallow: true });
- }
- }, [props.currentPathname, router]);
- // initialize mutateEditingMarkdown only once per page
- // need to include useCurrentPathname not useCurrentPagePath
- useEffect(() => {
- if (props.currentPathname != null) {
- mutateEditingMarkdown(revisionBody);
- }
- }, [mutateEditingMarkdown, revisionBody, props.currentPathname]);
- useEffect(() => {
- mutateRemoteRevisionId(pageWithMeta?.data.revision?._id);
- mutateRevisionIdHackmdSynced(pageWithMeta?.data.revisionHackmdSynced);
- }, [mutateRemoteRevisionId, mutateRevisionIdHackmdSynced, pageWithMeta?.data.revision?._id, pageWithMeta?.data.revisionHackmdSynced]);
- useEffect(() => {
- mutateCurrentPageId(pageId ?? null);
- }, [mutateCurrentPageId, pageId]);
- useEffect(() => {
- mutateIsNotFound(props.isNotFound);
- }, [mutateIsNotFound, props.isNotFound]);
- useEffect(() => {
- mutateIsLatestRevision(props.isLatestRevision);
- }, [mutateIsLatestRevision, props.isLatestRevision]);
- useEffect(() => {
- mutateTemplateTagData(props.templateTagData);
- }, [props.templateTagData, mutateTemplateTagData]);
- useEffect(() => {
- mutateTemplateBodyData(props.templateBodyData);
- }, [props.templateBodyData, mutateTemplateBodyData]);
- const title = generateCustomTitleForPage(props, pagePath);
- return (
- <>
- <Head>
- <title>{title}</title>
- </Head>
- <div className={`dynamic-layout-root ${growiLayoutFluidClass} h-100 d-flex flex-column justify-content-between`}>
- <header className="py-0 position-relative">
- <div id="grw-subnav-container">
- <GrowiContextualSubNavigation isLinkSharingDisabled={props.disableLinkSharing} />
- </div>
- </header>
- <div className="d-edit-none">
- <GrowiSubNavigationSwitcher isLinkSharingDisabled={props.disableLinkSharing} />
- </div>
- <div id="grw-subnav-sticky-trigger" className="sticky-top"></div>
- <div id="grw-fav-sticky-trigger" className="sticky-top"></div>
- <DisplaySwitcher
- pageView={(
- <PageView
- pagePath={pagePath}
- initialPage={pageWithMeta?.data}
- rendererConfig={props.rendererConfig}
- />
- )}
- />
- <PageStatusAlert />
- </div>
- </>
- );
- };
- type LayoutProps = Props & {
- children?: ReactNode
- }
- const Layout = ({ children, ...props }: LayoutProps): JSX.Element => {
- const className = useEditorModeClassName();
- // init sidebar config with UserUISettings and sidebarConfig
- useInitSidebarConfig(props.sidebarConfig, props.userUISettings);
- return (
- <BasicLayout className={className}>
- {children}
- </BasicLayout>
- );
- };
- Page.getLayout = function getLayout(page: React.ReactElement<Props>) {
- return (
- <>
- <GrowiPluginsActivator />
- <DrawioViewerScript />
- <Layout {...page.props}>
- {page}
- </Layout>
- <UnsavedAlertDialog />
- <DescendantsPageListModal />
- <DrawioModal />
- <HandsontableModal />
- <QuestionnaireModalManager />
- <TemplateModal />
- <LinkEditModal />
- </>
- );
- };
- function getPageIdFromPathname(currentPathname: string): string | null {
- return _isPermalink(currentPathname) ? removeHeadingSlash(currentPathname) : null;
- }
- class MultiplePagesHitsError extends ExtensibleCustomError {
- pagePath: string;
- constructor(pagePath: string) {
- super(`MultiplePagesHitsError occured by '${pagePath}'`);
- this.pagePath = pagePath;
- }
- }
- // apply parent page grant fot creating page
- async function applyGrantToPage(props: Props, ancestor: any) {
- await ancestor.populate('grantedGroup');
- const grant = {
- grant: ancestor.grant,
- };
- const grantedGroup = ancestor.grantedGroup ? {
- grantedGroup: {
- id: ancestor.grantedGroup.id,
- name: ancestor.grantedGroup.name,
- },
- } : {};
- props.grantData = Object.assign(grant, grantedGroup);
- }
- async function injectPageData(context: GetServerSidePropsContext, props: Props): Promise<void> {
- const { model: mongooseModel } = await import('mongoose');
- const req: CrowiRequest = context.req as CrowiRequest;
- const { crowi } = req;
- const { revisionId } = req.query;
- const Page = crowi.model('Page') as PageModel;
- const PageRedirect = mongooseModel('PageRedirect') as PageRedirectModel;
- const { pageService, configManager } = crowi;
- let currentPathname = props.currentPathname;
- const pageId = getPageIdFromPathname(currentPathname);
- const isPermalink = _isPermalink(currentPathname);
- const { user } = req;
- if (!isPermalink) {
- // check redirects
- const chains = await PageRedirect.retrievePageRedirectEndpoints(currentPathname);
- if (chains != null) {
- // overwrite currentPathname
- currentPathname = chains.end.toPath;
- props.currentPathname = currentPathname;
- // set redirectFrom
- props.redirectFrom = chains.start.fromPath;
- }
- // check whether the specified page path hits to multiple pages
- const count = await Page.countByPathAndViewer(currentPathname, user, null, true);
- if (count > 1) {
- throw new MultiplePagesHitsError(currentPathname);
- }
- }
- const pageWithMeta: IPageToShowRevisionWithMeta | null = await pageService.findPageAndMetaDataByViewer(pageId, currentPathname, user, true); // includeEmpty = true, isSharedPage = false
- const page = pageWithMeta?.data as unknown as PageDocument;
- // add user to seen users
- if (page != null && user != null) {
- await page.seen(user);
- }
- // populate & check if the revision is latest
- if (page != null) {
- page.initLatestRevisionField(revisionId);
- props.isLatestRevision = page.isLatestRevision();
- const ssrMaxRevisionBodyLength = configManager.getConfig('crowi', 'app:ssrMaxRevisionBodyLength');
- props.skipSSR = await skipSSR(page, ssrMaxRevisionBodyLength);
- await page.populateDataToShowRevision(props.skipSSR); // shouldExcludeBody = skipSSR
- }
- if (page == null && user != null) {
- const templateData = await Page.findTemplate(props.currentPathname);
- if (templateData != null) {
- props.templateTagData = templateData.templateTags as string[];
- props.templateBodyData = templateData.templateBody as string;
- }
- // apply pagrent page grant
- const ancestor = await Page.findAncestorByPathAndViewer(currentPathname, user);
- if (ancestor != null) {
- await applyGrantToPage(props, ancestor);
- }
- }
- props.pageWithMeta = pageWithMeta;
- }
- async function injectRoutingInformation(context: GetServerSidePropsContext, props: Props): Promise<void> {
- const req: CrowiRequest = context.req as CrowiRequest;
- const { crowi } = req;
- const Page = crowi.model('Page') as PageModel;
- const { currentPathname } = props;
- const pageId = getPageIdFromPathname(currentPathname);
- const isPermalink = _isPermalink(currentPathname);
- const page = props.pageWithMeta?.data;
- if (props.isIdenticalPathPage) {
- props.isNotCreatable = true;
- }
- else if (page == null) {
- props.isNotFound = true;
- props.isNotCreatable = !isCreatablePage(currentPathname);
- // check the page is forbidden or just does not exist.
- const count = isPermalink ? await Page.count({ _id: pageId }) : await Page.count({ path: currentPathname });
- props.isForbidden = count > 0;
- }
- else {
- props.isNotFound = page.isEmpty;
- props.isNotCreatable = false;
- props.isForbidden = false;
- // /62a88db47fed8b2d94f30000 ==> /path/to/page
- if (isPermalink && page.isEmpty) {
- props.currentPathname = page.path;
- }
- // /path/to/page ==> /62a88db47fed8b2d94f30000
- if (!isPermalink && !page.isEmpty) {
- const isToppage = pagePathUtils.isTopPage(props.currentPathname);
- if (!isToppage) {
- props.currentPathname = `/${page._id}`;
- }
- }
- }
- }
- // async function injectPageUserInformation(context: GetServerSidePropsContext, props: Props): Promise<void> {
- // const req: CrowiRequest = context.req as CrowiRequest;
- // const { crowi } = req;
- // const UserModel = crowi.model('User');
- // if (isUserPage(props.currentPagePath)) {
- // const user = await UserModel.findUserByUsername(UserModel.getUsernameByPath(props.currentPagePath));
- // if (user != null) {
- // props.pageUser = JSON.stringify(user.toObject());
- // }
- // }
- // }
- function injectServerConfigurations(context: GetServerSidePropsContext, props: Props): void {
- const req: CrowiRequest = context.req as CrowiRequest;
- const { crowi } = req;
- const {
- searchService, configManager, aclService,
- } = crowi;
- props.isSearchServiceConfigured = searchService.isConfigured;
- props.isSearchServiceReachable = searchService.isReachable;
- props.isSearchScopeChildrenAsDefault = configManager.getConfig('crowi', 'customize:isSearchScopeChildrenAsDefault');
- props.isSlackConfigured = crowi.slackIntegrationService.isSlackConfigured;
- // props.isMailerSetup = mailService.isMailerSetup;
- props.isAclEnabled = aclService.isAclEnabled();
- // props.hasSlackConfig = slackNotificationService.hasSlackConfig();
- props.drawioUri = configManager.getConfig('crowi', 'app:drawioUri');
- props.hackmdUri = configManager.getConfig('crowi', 'app:hackmdUri');
- props.noCdn = configManager.getConfig('crowi', 'app:noCdn');
- // props.highlightJsStyle = configManager.getConfig('crowi', 'customize:highlightJsStyle');
- props.isAllReplyShown = configManager.getConfig('crowi', 'customize:isAllReplyShown');
- props.isContainerFluid = configManager.getConfig('crowi', 'customize:isContainerFluid');
- props.isEnabledStaleNotification = configManager.getConfig('crowi', 'customize:isEnabledStaleNotification');
- props.disableLinkSharing = configManager.getConfig('crowi', 'security:disableLinkSharing');
- props.editorConfig = {
- upload: {
- isUploadableFile: crowi.fileUploadService.getFileUploadEnabled(),
- isUploadableImage: crowi.fileUploadService.getIsUploadable(),
- },
- };
- props.adminPreferredIndentSize = configManager.getConfig('markdown', 'markdown:adminPreferredIndentSize');
- props.isIndentSizeForced = configManager.getConfig('markdown', 'markdown:isIndentSizeForced');
- props.isEnabledAttachTitleHeader = configManager.getConfig('crowi', 'customize:isEnabledAttachTitleHeader');
- props.rendererConfig = {
- isEnabledLinebreaks: configManager.getConfig('markdown', 'markdown:isEnabledLinebreaks'),
- isEnabledLinebreaksInComments: configManager.getConfig('markdown', 'markdown:isEnabledLinebreaksInComments'),
- adminPreferredIndentSize: configManager.getConfig('markdown', 'markdown:adminPreferredIndentSize'),
- isIndentSizeForced: configManager.getConfig('markdown', 'markdown:isIndentSizeForced'),
- drawioUri: configManager.getConfig('crowi', 'app:drawioUri'),
- plantumlUri: configManager.getConfig('crowi', 'app:plantumlUri'),
- // XSS Options
- isEnabledXssPrevention: configManager.getConfig('markdown', 'markdown:rehypeSanitize:isEnabledPrevention'),
- xssOption: configManager.getConfig('markdown', 'markdown:rehypeSanitize:option'),
- attrWhitelist: JSON.parse(crowi.configManager.getConfig('markdown', 'markdown:rehypeSanitize:attributes')),
- tagWhitelist: crowi.configManager.getConfig('markdown', 'markdown:rehypeSanitize:tagNames'),
- highlightJsStyleBorder: crowi.configManager.getConfig('crowi', 'customize:highlightJsStyleBorder'),
- };
- props.ssrMaxRevisionBodyLength = configManager.getConfig('crowi', 'app:ssrMaxRevisionBodyLength');
- }
- /**
- * for Server Side Translations
- * @param context
- * @param props
- * @param namespacesRequired
- */
- async function injectNextI18NextConfigurations(context: GetServerSidePropsContext, props: Props, namespacesRequired?: string[] | undefined): Promise<void> {
- const nextI18NextConfig = await getNextI18NextConfig(serverSideTranslations, context, namespacesRequired);
- props._nextI18Next = nextI18NextConfig._nextI18Next;
- }
- export const getServerSideProps: GetServerSideProps = async(context: GetServerSidePropsContext) => {
- const req = context.req as CrowiRequest<IUserHasId & any>;
- const { user } = req;
- const result = await getServerSideCommonProps(context);
- // check for presence
- // see: https://github.com/vercel/next.js/issues/19271#issuecomment-730006862
- if (!('props' in result)) {
- throw new Error('invalid getSSP result');
- }
- const props: Props = result.props as Props;
- if (props.redirectDestination != null) {
- return {
- redirect: {
- permanent: false,
- destination: props.redirectDestination,
- },
- };
- }
- if (user != null) {
- props.currentUser = user.toObject();
- }
- try {
- await injectPageData(context, props);
- }
- catch (err) {
- if (err instanceof MultiplePagesHitsError) {
- props.isIdenticalPathPage = true;
- }
- else {
- throw err;
- }
- }
- await injectRoutingInformation(context, props);
- injectServerConfigurations(context, props);
- await injectNextI18NextConfigurations(context, props, ['translation']);
- return {
- props,
- };
- };
- export default Page;
|